home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ntfs-config.postrm < prev    next >
Encoding:
Text File  |  2007-02-23  |  494 b   |  29 lines

  1. #!/bin/sh
  2. # postrm script for ntfs-config
  3.  
  4. set -e
  5.  
  6. case "$1" in
  7.     purge|remove)  
  8.     # Remove any fdi rule that could have been created by the program
  9.     echo "Removing configuration files created by the program..."
  10.     rm -f /etc/hal/fdi/policy/20-ntfs-config-write-policy.fdi
  11.     rm -f /etc/hal/fdi/policy/20-ntfs-config-ro-policy.fdi 
  12.     ;;
  13.  
  14.     failed-upgrade|upgrade)
  15.     ;;
  16.  
  17.  
  18.     *)
  19.         echo "postrm called with unknown argument \`$1'" >&2
  20.         exit 1
  21.     ;;
  22. esac
  23.  
  24.  
  25.  
  26. exit 0
  27.  
  28.  
  29.